Dismiss
Announcing Stack Overflow Documentation

We started with Q&A. Technical documentation is next, and we need your help.

Whether you're a beginner or an experienced developer, you can contribute.

Sign up and start helping → Learn more about Documentation →

is there any ways to set the value of checkbox on sigma grid??

i don't see any configuration that could change it

maybe anyone ever try it?

i need the checkbox value to change, so that the rows checked will be send to be updated.

that is the only way to get all record sent

share|improve this question

It appears (I am trying to figure out the checkbox too) that there is NO VALUE assigned to the checkboxes at all. They are ignored when passed.

But I am working on extending the following snippet which works at the JS level:

for ( var row_id in mygrid.checkedRows) 
          { //check which rows have been Ticked
          console.log('selected row: '+row_id+' '+mygrid.checkedRows[row_id]);
          console.log('Row data: ' +mygrid.getCellValue('uid',row_id));
          }

Where uid is the name of the column which denotes the Unique Identifier of that row. (the checkedRows array is 0-based)

share|improve this answer
    
This fails if the user has changed the page size. – Ivan Jun 20 '12 at 17:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.